home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / solaris9_113279.nasl < prev    next >
Text File  |  2005-01-14  |  1KB  |  53 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5.  
  6. if ( ! defined_func("bn_random") ) exit(0);
  7. if(description)
  8. {
  9.  script_id(13534);
  10.  script_version ("$Revision: 1.4 $");
  11.  script_bugtraq_id(5986);
  12.  name["english"] = "Solaris 9 (sparc) : 113279-01";
  13.  
  14.  script_name(english:name["english"]);
  15.  
  16.  desc["english"] = "
  17. The remote host is missing Sun Security Patch number 113279-01
  18. ( klmmod Patch).
  19.  
  20. You should install this patch for your system to be up-to-date.
  21.  
  22. Solution : http://sunsolve.sun.com/search/document.do?assetkey=1-21-113279-01-1
  23. Risk factor : High";
  24.  
  25.  
  26.  script_description(english:desc["english"]);
  27.  
  28.  summary["english"] = "Check for patch 113279-01"; 
  29.  script_summary(english:summary["english"]);
  30.  
  31.  script_category(ACT_GATHER_INFO);
  32.  
  33.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  34.  family["english"] = "Solaris Local Security Checks";
  35.  script_family(english:family["english"]);
  36.  
  37.  script_dependencies("ssh_get_info.nasl");
  38.  script_require_keys("Host/Solaris/showrev");
  39.  exit(0);
  40. }
  41.  
  42.  
  43.  
  44. include("solaris.inc");
  45.  
  46. e =  solaris_check_patch(release:"5.9", arch:"sparc", patch:"113279-01", obsoleted_by:"", package:"SUNWhea SUNWnfscr SUNWnfscx");
  47.  
  48. if ( e < 0 ) security_hole(0);
  49. else if ( e > 0 )
  50. {
  51.     set_kb_item(name:"BID-5986", value:TRUE);
  52. }
  53.